body {
    background-color: rgba(27, 27, 29, 1);
    color: white;
    margin: 0px;
    padding: 0px;
}

.title-image {
    background-image: url("../img/peripheral-products-images/title-image.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 5%;
}


.frame {
    justify-content: flex-start;
    position: absolute;
    bottom: 0;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
    gap: 20px;
    margin-bottom: 5%;
    overflow: hidden;
}

.product-item {
    width: 100%;
    height: auto;
    flex: 1 1 20%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 8%;
}


.product-item-content {
    display: flex;
    justify-content: flex-start;
    margin-top: -15px;
    box-sizing: border-box;
    width: 100%;
    word-wrap: break-word;
}



.content-alignment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    gap: 50px;
}


.font-body {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.font-body .price {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 650;
}

.font-body .tax {
    font-size: clamp(18px, 3.5vw, 22px);
    font-weight: 300;
}




.font-title h2,
h2.font-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 650;
    margin: 0;
    width: 100%;
    margin-top: 30%;
}


.font-title h4,
h4.font-title {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 650;
    margin: 0;
    width: 80%;
}

.font-body h2,
h2.font-body {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 550;
}

.font-body h3,
h3.font-body {
    font-size: clamp(18px, 3.5vw, 22px);
    font-weight: 400;
}


@media screen and (max-width:1024px) {

    .font-body .price {
        font-size: clamp(18px, 3.8vw, 24px);
    }

    .font-body .tax {
        font-size: clamp(16px, 3vw, 20px);
    }


    .product-item {
        width: 100%;
        height: auto;
        flex: 1 1 45%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        margin-bottom: 8%;
    }

}

@media (max-width: 800px) {
    .product-item {
        width: 100%;
        height: auto;
        flex: 1 1 90%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        margin-bottom: 8%;
    }

    .font-body .price {
        font-size: clamp(18px, 3.5vw, 22px);
    }

    .font-body .tax {
        font-size: clamp(14px, 3vw, 18px);
    }
}


@media (max-width: 500px) {

    .font-body .price {
        font-size: clamp(16px, 3vw, 20px);
    }

    .font-body .tax {
        font-size: clamp(14px, 2.5vw, 18px);
    }
}